home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / loadok.sql < prev    next >
Text File  |  2000-05-12  |  710b  |  19 lines

  1. /* RCSVER $Id: loadok.sql,v 1.1 1999-11-19 13:50:10-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        loadok.sql
  6. * Date:        07/28/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the loadok table.  This table contains 
  9. *        the highest probe sequence number of the last 
  10. *        convert done for each farebox.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE loadok
  14. (
  15.     farebox_glid    NUMBER(38),    /* Farebox number */
  16.     seq_num     NUMBER(38),    /* Probe sequence number */
  17.         CONSTRAINT pk_loadok PRIMARY KEY (farebox_glid)
  18. );
  19.